I have the following code and I am wondering why in Chrome the console says "Content script injection failed, reloading". It seems like the inner code has nothing to do with it, I also tried to insert other functions in the click event...
var leftImageSliders = document.getElementById("ccl-content-box").getElementsByClassName("project");
$(leftImageSliders).on('click',function(){
smoothScroll({toElement: this, easing: 'swing', duration: 200, scrollingElement: leftColumn});
var y = $(leftColumn).scrollTop();
});